home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Magazine / C_Tutorial / Part-13 / PatchLib / source / stubs / WaitRemovePatchREG.asm < prev   
Encoding:
Assembly Source File  |  1996-08-31  |  317 b   |  24 lines

  1. * WaitRemovePatchREG.asm
  2.  
  3.     incdir "work:Includes/IncludeV2.0.i/"
  4.     include "exec/types.i"
  5.     include "exec/libraries.i"
  6.  
  7.     SECTION code
  8.  
  9.     XREF    _PatchBase
  10.  
  11.  
  12.     XREF    _LVOWaitRemovePatch
  13.     XDEF    @WaitRemovePatch
  14.  
  15. @WaitRemovePatch:
  16.     move.l a6,-(sp)
  17.     move.l _PatchBase,a6
  18.     jsr _LVOWaitRemovePatch(a6)
  19.     move.l (sp)+,a6
  20.     rts
  21.  
  22.  
  23.     END
  24.